home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / MotifApp / ch1 / Makefile < prev    next >
Encoding:
Makefile  |  1995-05-03  |  429 b   |  30 lines

  1. include ../make.cfg
  2.  
  3. #
  4. #    Override libraries, since these programs don't use
  5. #    the MotifApp framework
  6.  
  7. LIBS=$(XLIBS)
  8.  
  9. all: form hello pushme widgettree 
  10.  
  11. hello: hello.o
  12.     $(CC) -o hello hello.o $(LIBS)
  13.  
  14.  
  15. pushme: pushme.o
  16.     $(CC) -o pushme pushme.o $(LIBS)
  17.  
  18.  
  19. widgettree: widgettree.o
  20.     $(CC) -o widgettree widgettree.o $(LIBS)
  21.  
  22. form: form.o
  23.     $(CC) -o form form.o $(LIBS)
  24.  
  25. clobber:
  26.     rm -f *.o *~*
  27.     rm -f hello pushme widgettree form
  28.  
  29.  
  30.